Background: Some cases use the E+1 coverage type. This can be Employee + Child or Employee + Spouse. The system translates this tier to E1D in the 834 report. But per the 834 specs, the E1D cannot be used if the dependent is a spouse. Put the following script in the 834 JScript section to change the coverage type code from E+1 to ES if one dependent is a spouse:
//if tier = 'E+1' set it to ES if the dependent is the spouse so the report will
//emit ESP instead of E1D
if (Event.LastEmployeeRecord)
{
for (var empCov in Event.EmpCoverages)
if (empCov["CoverageTypeID"] == 8) // E+1
{
var spousePresent = false;
for (var depCovs in Event.DepCoveragesHash.Values)
for (var depCov in depCovs)
if (depCov["CoverageID"] == empCov["CoverageID"])
{
if (depCov["DependentRelationshipID"] == 1) // spouse
spousePresent = true;
}
if (spousePresent)
{
empCov["CoverageTypeID"] = 6;
empCov["CoverageTypeCode"] = "ES";
}
}